home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / textfile / faqs / lin_faq / info_she < prev    next >
Encoding:
Internet Message Format  |  1992-12-26  |  16.9 KB

  1. Xref: bloom-picayune.mit.edu comp.os.linux.announce:59 comp.os.linux:21383 news.answers:4717
  2. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!eru.mt.luth.se!lunic!sunic!news.funet.fi!hydra!klaava!wirzeniu
  3. From: wirzeniu@cc.helsinki.fi (Lars Wirzenius)
  4. Newsgroups: comp.os.linux.announce,comp.os.linux,news.answers
  5. Subject: Linux INFO-SHEET
  6. Keywords: INFO-SHEET documentation periodic posting
  7. Message-ID: <1992Dec20.221400.2740@klaava.Helsinki.FI>
  8. Date: 20 Dec 92 22:14:00 GMT
  9. Sender: wirzeniu@klaava.Helsinki.FI (Lars Wirzenius)
  10. Organization: University of Helsinki
  11. Lines: 363
  12. Approved: linux-announce@tc.cornell.edu (Lars Wirzenius)
  13.  
  14. Archive-name: linux-faq/info-sheet
  15. Last-modified: 1992-12-10
  16.  
  17.  
  18. LINUX INFORMATION SHEET
  19. by Lars Wirzenius (lars.wirzenius@helsinki.fi),
  20. earlier versions done by other people
  21.  
  22.  
  23. 0. About this INFO-SHEET
  24.  
  25.         This INFO-SHEET tries to be a concentrated distillation of the
  26.         necessary information one needs to decide whether Linux is a
  27.         suitable operating system for you.  It is kind of an
  28.         advertisment, although hopefully more truthful.
  29.  
  30.         This INFO-SHEET is posted every other week to the
  31.         comp.os.linux newsgroup.
  32.  
  33. 1. What Is Linux?
  34.  
  35.         Linux is a freely distributable UNIX clone.  It is mostly
  36.         compatible with System V and POSIX specifications, but is
  37.         quite compatible with BSD as well.
  38.  
  39.         The Linux kernel has been written from scratch, and therefore
  40.         does not contain any proprietary code, either from AT&T,
  41.         MINIX, or other places--not in the kernel, the compiler, the
  42.         utilities, or the libraries.  For this reason it can be made
  43.         available with the complete source code via anonymous FTP.
  44.         (The software that runs under Linux, on the other hand, is
  45.         mostly already existing Unix freeware, with a lot of stuff
  46.         coming from the GNU Project.)
  47.  
  48.         Linux runs only on 386/486 machines with an ISA or EISA bus;
  49.         porting to other architectures is likely to be difficult, as
  50.         the kernel makes extensive use of 386 memory management and
  51.         task primitives (but there are people working on at least an
  52.         Amiga port).  MCA is not supported because there is little
  53.         available documentation (especially for poor-hacker -friendly
  54.         prices) about it.  (See below for more information on
  55.         hardware.)
  56.  
  57.         Linux is still in beta testing and therefore not really
  58.         considered to be suitable for production work (although it is
  59.         used for that anyway).  There are still bugs in the system,
  60.         and since it develops rapidly, new bugs creep up often.
  61.         However, some releases are quite stable, and you can stay with
  62.         those if you don't want to be on the bleeding edge.  Some
  63.         sites have been running Linux systems continuously doing real
  64.         work for more than 50 days, without a single reboot, crash, or
  65.         other lock-up!
  66.  
  67.         One thing to be aware of is that Linux is developed using an
  68.         open and distributed model, instead of a closed and
  69.         centralised model like much other software.  This means that
  70.         the current development version is always public (with up to a
  71.         week or two's delay) so that anybody can use it.  The result
  72.         is that whenever a version with new functionality is released,
  73.         it almost always contains bugs, but it also results in a very
  74.         rapid development so that the bugs are found and corrected
  75.         quickly, sometimes in hours.
  76.  
  77.         (The closed and centralised model means that there is only one
  78.         person or team working on the project, and they only release
  79.         software that they think is working well.  Often this leads to
  80.         long intervals between releases, long waiting for bug fixes, and
  81.         slower development.  Of course, the latest release of such
  82.         software is often of higher quality.)
  83.  
  84.         As of December 10 the current version is 0.98 patchlevel 6.
  85.  
  86. 2. Linux Features
  87.  
  88.       * multitasking: several programs running at once
  89.       * multiuser: several users on the same machine at once (and NO
  90.         two-user licenses!)
  91.       * memory protection between processes, so that one program can't
  92.         bring the whole system down
  93.       * core dumps for post-mortem analysis (using a debugger on a
  94.         program after it has crashed)
  95.       * demand loading of executables: only read in those parts of a
  96.         program that are actually used
  97.       * virtual memory using paging (not swapping whole processes) to
  98.         disk, to a separate partition or a file in the filesystem, or
  99.         both, and with a possibility to add more swapping areas at
  100.         runtime (they're still called swapping areas)
  101.       * shared pages among executables with copy-on-write
  102.       * shared libraries (static too, of course)
  103.       * a unified memory pool for user programs and disk cache (so
  104.         that all free memory can be used for caching, and the cache
  105.         can be reduced when running large programs)
  106.       * mostly compatible with POSIX, System V, and BSD at the source
  107.         level
  108.       * all source code is available, including the whole kernel and
  109.         all drivers, the development tools and all user programs;
  110.         also, all of it is freely distributable
  111.       * POSIX job control
  112.       * pseudoterminals (pty's)
  113.       * 387-emulation in the kernel so that programs don't need to
  114.         include math emulation packages
  115.       * support for many national or customized keyboards, and it's
  116.         fairly easy to add new ones
  117.       * runs in protected mode of the 386
  118.       * multiple virtual consoles: several independent login sessions
  119.         through the console, you switch by pressing a hot-key
  120.         combination (not dependent on video hardware)
  121.       * normal and extended Minix filesystems (the extended version
  122.         supports up to 4 TB, filenames up to 255 chars)
  123.       * transparent access to MS-DOS partitions (or OS/2 FAT
  124.         partitions) via a special filesystem: you don't need any
  125.         special commands to use the MS-DOS partition, it looks just
  126.         like a normal Unix filesystem (except for funny restrictions
  127.         on filenames, permissions, and so on)
  128.       * CD-ROM filesystem
  129.       * Xenix filesystem
  130.     
  131. In addition the following are being worked on (in various states of
  132. usability):
  133.  
  134.       * networking (TCP/IP, including ftp, telnet, etc)
  135.       * compressed file system
  136.       * Xenix binary compatibility
  137.  
  138. 3. Hardware Issues
  139.  
  140.     Minimal configuration
  141.  
  142.         The following is probably the smallest possible configuration
  143.         that Linux will work on: 386SX/16, 2 MB RAM, 1.44 MB or 1.2 MB
  144.         floppy, any supported video card (+ keyboards, monitors, and
  145.         so on of course).  This should allow you to boot and test
  146.         whether it works at all on the machine, but you won't be able
  147.         to do anything useful.
  148.  
  149.         In order to do something, you will want some hard disk space
  150.         as well, 5 to 10 MB should suffice for a very minimal setup
  151.         (with only the most important commands and perhaps one or two
  152.         small applications installed, like, say, a terminal program).
  153.         This is still very, very limited, and very uncomfortable, as
  154.         it doesn't leave enough room to do just about anything.  (It's
  155.         definitely not recommended for anything but testing if things
  156.         work, and of course to be able to brag about small resource
  157.         requirements. :-)
  158.  
  159.     Usable configuration
  160.  
  161.         If you are going to run computationally intensive programs,
  162.         such as gcc, X, and TeX, you will probably want a faster
  163.         processor than a 386SX/16, but even that should suffice if you
  164.         are patient.
  165.  
  166.     In practice, you need at least 4 MB of RAM if you don't use X,
  167.         and 8 MB if you do.  Also, if you want to have several users
  168.         at a time, or run several large programs (compilations for
  169.         example) at a time, you may want more than 4 MB of memory.  It
  170.         will still work with a smaller amount of memory (should work
  171.         even with 2 MB), but it will use virtual memory and that will
  172.         be so slow it's unusable.
  173.  
  174.         The amount of hard disk you need depends on what software you
  175.         want to install.  The normal basic set of Unix utilities,
  176.         shells, and administrative programs should be comfortable in
  177.         less than 10 MB, with a bit of room to spare for user files.
  178.         For a more complete system, the SLS documentation reports that
  179.         a full base system without X fits into 20 MB, and with X into
  180.         40 MB (this is only binaries).  Add the whatever space you
  181.         want to reserve for user files.
  182.  
  183.         Add more memory, more hard disk, a faster processor and other
  184.         stuff depending on your needs, wishes and budget to go beyond
  185.         the merely usable.
  186.  
  187.     Supported hardware
  188.  
  189.         Note: This section is still sketchy.  Feedback appreciated.
  190.  
  191.     CPU: Anything that runs 386 protected mode programs (all
  192.         models of 386s and 486s should work; 286s don't work, and
  193.         never will).
  194.  
  195.         Architecture: ISA or EISA bus (you still need an ISA-bus hard
  196.         disk controller, though).  MCA (aka PS/2) does not work.
  197.         Local bus should work.
  198.  
  199.         RAM: Theoretically up to 1 GB (but more than 16 MB requires a
  200.         kernel recompilation).  (It will work with "too much" memory,
  201.         but it won't use it.)
  202.  
  203.         Data storage: Generic AT drives (IDE, 16 bit HD controllers
  204.         with MFM or RLL), generic XT controllers (8 bit controllers
  205.         with MFM or RLL) need a special driver (not currently part of
  206.         the standard kernel), SCSI hard disks and CD-ROM.  Supported
  207.         SCSI cards: Adaptec 1542 (but not 1522), the 1740 in extended
  208.         (not 1542 compatible) mode, Seagate ST-01 and ST-02, Future
  209.         Domain TMC-88x series (or any board based on the TMC950 chip)
  210.         and TMC1660/1680, Ultrastor 14F, and Western Digital wd7000.
  211.         SCSI and QIC-02 tapes.
  212.  
  213.         Video: VGA, EGA, CGA, or Hercules (and compatibles) work in
  214.         text mode.  For graphics and X, there is support for (at
  215.         least) EGA, normal VGA, some super-VGA cards (most of the
  216.         cards based on ET3000, ET4000, Paradise, and some Trident
  217.         chipsets), some S3 cards (not Diamond Stealth, because the
  218.         manufacturer won't tell how to program it) and 8514/A.  (Linux
  219.         uses the Xfree86 X server, so that determines what cards are
  220.         supported.)
  221.  
  222.         Other hardware: SoundBlaster, AST Fourport cards (with 4 serial
  223.         boards), several flavours of bus mice (Microsoft, Logitech,
  224.         PS/2).
  225.  
  226. 4. An Incomplete List of Ported Programs and Other Software
  227.  
  228.         Most of the common Unix tools and programs have been ported to
  229.         Linux, including almost all of the GNU stuff and many X
  230.         clients from various sources.  Actually, ported is often too
  231.         strong a word, since many programs compile out of the box
  232.         without modifications, or only small modifications (maybe
  233.         being POSIXy and following standards isn't so bad :).
  234.         Unfortunately, there are not very many end-user applications.
  235.         Nevertheless, here is an incomplete list of software that is
  236.         known to work under Linux.
  237.  
  238.         Basic Unix commands: ls, tr, sed, awk and so on (you name it,
  239.         we've probably got it).
  240.  
  241.         Development tools: gcc, gdb, make, bison, flex, perl,
  242.         rcs, cvs, gprof.
  243.  
  244.         Graphical environments: X11R5 (Xfree86), MGR.
  245.  
  246.         Editors: GNU Emacs, MicroEmacs, elvis, joe.
  247.  
  248.         Shells: Bash, zsh, tcsh, rc.
  249.  
  250.     Telecommunication: UUCP, kermit, szrz, minicom, pcomm, xcomm,
  251.         term (runs multiple shells over one modem line).
  252.  
  253.     News and mail: C-news, trn, nn, tin, smail, elm.
  254.  
  255.         Textprocessing: TeX, groff.
  256.  
  257.         Games: Nethack, several Muds.
  258.  
  259. 5. Getting Linux
  260.  
  261.    Anonymous FTP
  262.  
  263.         At least the following anonymous ftp sites carry Linux.  This
  264.         list is taken from the Meta-FAQ list, which is posted every
  265.         week to the comp.os.linux newsgroup (the Meta-FAQ is updated
  266.         more often than this information sheet, so the list below may
  267.         not be the most current one).
  268.  
  269.    textual name                            numeric addr    Linux directory
  270.  
  271.    tsx-11.mit.edu                          18.172.1.2      /pub/linux
  272.    sunsite.unc.edu                         152.2.22.81     /pub/Linux
  273.    nic.funet.fi                            128.214.6.100   /pub/OS/Linux
  274.    ftp.mcc.ac.uk                           130.88.200.7    /pub/linux
  275.    fgb1.fgb.mw.tu-muenchen.de              129.187.200.1   /pub/linux
  276.    ftp.informatik.tu-muenchen.de           131.159.0.110   /pub/Linux
  277.    ftp.dfv.rwth-aachen.de                  137.226.4.105   /pub/linux
  278.    ftp.informatik.rwth-aachen.de           137.226.112.172 /pub/Linux
  279.    kirk.bu.oz.au                           131.244.1.1     /pub/OS/Linux
  280.    utsun.s.u-tokyo.ac.jp                   133.11.11.11    /misc/linux
  281.    ftp.uu.net                              137.39.1.9      /packages/linux
  282.    wuarchive.wustl.edu                     128.252.135.4   mirrors/linux
  283.    ftp.win.tue.nl                          131.155.70.100  /pub/linux
  284.  
  285.  
  286.     Other methods of obtaining Linux
  287.  
  288.         There are several BBS's that have Linux files.  A list of them
  289.         is maintained by Zane Healy; he posts it to the comp.os.linux
  290.         newsgroup around the beginning and middle of the month, please
  291.         see that post for more information.
  292.  
  293.         There is also at least one organization that distributes Linux
  294.         on floppies, for a fee.  Contact 
  295.  
  296.                 Softlanding Software
  297.                 910 Lodge Ave.
  298.                 Victoria, B.C., Canada
  299.                 V8X-3A8
  300.                 (608) 360-0188
  301.  
  302.         The price is US$3.25 per disk ($4.00 Canadian) in 5.25" format
  303.         (add $1/disk for 3.5").  Add GST (7%) and PST/SST as
  304.         applicable, plus $10.00 for S&H (outside North America, add
  305.         $10.00).  (Prices may change without notice.)  There are 13
  306.         disk in a base system, 21 if you want X.
  307.  
  308.         Also, don't forget about friends and user's groups, who are
  309.         usually glad to let you make a copy.
  310.  
  311.     Getting started
  312.  
  313.         As mentioned at the beginning, Linux is not centrally
  314.         administered.  Because of this, there is no "official" release
  315.         that one could point at, and say "That's Linux".  Instead,
  316.         there are various "distributions", which are more or less
  317.         complete collections of software configured and packaged so
  318.         that they can be used to install a Linux system.  The two most
  319.         important ones are the SLS and MCC releases.
  320.  
  321.         SLS is put together by Peter MacDonald, and is the more
  322.         full-featured one.  It contains most of the available
  323.         software, and includes X.  MCC is maintained by Owen LeBlanc
  324.         at the Manchester Computing Centre, and has a longer history
  325.         than SLS, but it doesn't contain X, and some other goodies.
  326.         Either one serves as a starter's package.
  327.  
  328.         The first thing you should do is to get and read the list of
  329.         Frequently Asked Questions (FAQ) from one of the FTP sites, or
  330.         by using the normal Usenet FAQ archives (e.g.
  331.         pit-manager.mit.edu).  This document has plenty of
  332.         instructions on what to do to get started, what files you
  333.         need, and how to solve most of the common problems (during
  334.         installation or otherwise).
  335.  
  336. 6. Legal Status of Linux
  337.  
  338.         Although Linux is supplied with the complete source code, it
  339.         is copyrighted software, not public domain.  However, it is
  340.         available for free under the GNU Public License.  See the GPL
  341.         for more information.  The programs that run under Linux have
  342.         each their own copyright, although much of it uses the GPL as
  343.         well.  All of the software on the FTP site is freely
  344.         distributable (or else it shouldn't be there).
  345.  
  346. 7. News About Linux
  347.  
  348.         There is a Usenet newsgroup, comp.os.linux, for Linux
  349.         discussion, and also several mailing lists.  See the Linux FAQ
  350.         for more information about the mailing lists (you should be able
  351.         to find the FAQ either in the newsgroup or on the FTP sites).
  352.  
  353.         The newsgroup comp.os.linux.announce is a moderated newsgroup
  354.         for announcements about Linux (new programs, bug fixes, etc).
  355.  
  356.         For the current status of the Linux kernel, finger
  357.         torvalds@kruuna.helsinki.fi.
  358.  
  359.         There is also a more or less weekly "newsletter", Linux News,
  360.         which summarizes the most important announcements and uploads,
  361.         and has occasional other articles as well.  Look in
  362.         comp.os.linux for a sample issue.
  363.  
  364. 8. Future Plans
  365.  
  366.         Work is underway on Linux version 1.0, which will close some
  367.         of the gaps in the present implementation.  The major
  368.         functionality shortcomings are advanced interprocess
  369.         communication (semaphores, shared memory), closer
  370.         compatibility with POSIX, and a lot of tweaking.
  371.         Documentation is also sorely missing.
  372.  
  373. 9. Legalese
  374.  
  375.         Trademarks are owned by their owners.  There is no warranty
  376.         about the information in this document.
  377.